home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / bitshln.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  536 b   |  25 lines

  1. <!--- This example shows BitSHLN --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitSHLN Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>BitSHLN Example</H3>
  13.  
  14. Returns the number bitwise shifted without rotation
  15. to the left by count bits.
  16.  
  17. <P>BitSHLN(1,1): <CFOUTPUT>#BitSHLN(1,1)#</CFOUTPUT>
  18. <P>BitSHLN(1,30): <CFOUTPUT>#BitSHLN(1,30)#</CFOUTPUT>
  19. <P>BitSHLN(1,31): <CFOUTPUT>#BitSHLN(1,31)#</CFOUTPUT>
  20. <P>BitSHLN(2,31): <CFOUTPUT>#BitSHLN(2,31)#</CFOUTPUT>
  21.  
  22. </BODY>
  23.  
  24. </HTML>       
  25.